home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Dialogs / DialogManagerUser.cp next >
Text File  |  2000-06-23  |  475b  |  30 lines

  1. // DialogManagerUser.cp
  2.  
  3. #ifndef DialogManagerUser_h
  4. #include "DialogManagerUser.h"
  5. #endif
  6. #ifndef TextEditUser_h
  7. #include "TextEditUser.h"
  8. #endif
  9. #ifndef MenuManagerUser_h
  10. #include "MenuManagerUser.h"
  11. #endif
  12. #ifndef Integers_h
  13. #include "Integers.h"
  14. #endif
  15.  
  16. #include <Dialogs.h>
  17.  
  18. DialogManagerUser::DialogManagerUser()
  19.   {
  20.     static bool initialized = false;
  21.     
  22.     if ( !initialized )
  23.       {
  24.         MenuManagerUser();
  25.         TextEditUser();
  26.         InitDialogs( 0 );
  27.         initialized = true;
  28.       }
  29.   }
  30.